home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Broadcaster
/
Protocols
/
PreparingToQuit.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
406b
|
24 lines
// PreparingToQuit.h
#ifndef PreparingToQuit_h
#define PreparingToQuit_h
#ifndef SavingOption_h
#include "SavingOption.h"
#endif
template < class Protocol > class Broadcaster;
class PreparingToQuit
{
protected:
~PreparingToQuit() {}
public:
virtual void PrepareToQuit( SavingOption save = SavingOption::ask ) = 0;
static Broadcaster< PreparingToQuit >& TheBroadcaster();
};
#endif